home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Full / Paragon Drive Backup 9 / DB90_SE_x64.msi / Data1.cab / _73AFD5A9A08C4E3BB53A1D3F6DE39653 < prev    next >
Extensible Markup Language  |  2008-06-28  |  1KB  |  49 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.     <xsl:output 
  5.           method="html" 
  6.           version="4.0" 
  7.           encoding="UTF-8" 
  8.           omit-xml-declaration="yes" 
  9.           indent="yes"/>
  10.           
  11.     <xsl:template match="/">
  12.         <html>
  13.             <body>
  14.             <table border="0" width="100%">
  15.           <xsl:for-each select="Root/OperationGroup">
  16.             <xsl:if test="GroupName">
  17.               <tr>
  18.                 <td colspan="2">
  19.                    <h3><xsl:value-of select="GroupName"/></h3>
  20.                 </td>
  21.               </tr>
  22.               <tr>
  23.                 <td valign="center" colspan="2">
  24.                    <img src="hline_gray"/>
  25.                 </td>
  26.               </tr>
  27.               <xsl:for-each select="Operation">
  28.                 <tr>
  29.                   <td>
  30.                     <img align="right">
  31.                       <xsl:attribute name="src"><xsl:value-of select="@icon"/></xsl:attribute>
  32.                     </img>
  33.                   </td>
  34.                   <td width="100%">
  35.                     <xsl:value-of select="."/>
  36.                   </td>
  37.                 </tr>
  38.               </xsl:for-each>
  39.                       </xsl:if>
  40.           </xsl:for-each>
  41.             </table>
  42.             </body>
  43.         </html>
  44.     </xsl:template>
  45.     
  46.     <xsl:template match="/Root">
  47.   
  48. </xsl:stylesheet>
  49.